home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 8 / QRZ Ham Radio Callsign Database - Volume 8.iso / mac / files / dsp / dspkgctr.z / dspkgctr / gcc / integrate.c < prev    next >
C/C++ Source or Header  |  1992-06-08  |  62KB  |  2,013 lines

  1. /* Procedure integration for GNU CC.
  2.    Copyright (C) 1988 Free Software Foundation, Inc.
  3.    Contributed by Michael Tiemann (tiemann@mcc.com)
  4.  
  5.    $Id: integrate.c,v 1.4 91/08/06 09:59:50 jeff Exp $
  6.  
  7. This file is part of GNU CC.
  8.  
  9. GNU CC is free software; you can redistribute it and/or modify
  10. it under the terms of the GNU General Public License as published by
  11. the Free Software Foundation; either version 1, or (at your option)
  12. any later version.
  13.  
  14. GNU CC is distributed in the hope that it will be useful,
  15. but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17. GNU General Public License for more details.
  18.  
  19. You should have received a copy of the GNU General Public License
  20. along with GNU CC; see the file COPYING.  If not, write to
  21. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  22.  
  23.  
  24. #include <stdio.h>
  25.  
  26. #include "config.h"
  27. #include "rtl.h"
  28. #include "tree.h"
  29. #include "flags.h"
  30. #if ! defined( _INTELC32_ )
  31. #include "insn-flags.h"
  32. #else
  33. #include "iflags.h"
  34. #endif
  35. #include "expr.h"
  36.  
  37. #include "obstack.h"
  38. #define    obstack_chunk_alloc    xmalloc
  39. #define    obstack_chunk_free    free
  40. extern int xmalloc ();
  41. extern void free ();
  42.  
  43. extern struct obstack permanent_obstack, maybepermanent_obstack;
  44. extern struct obstack *rtl_obstack, *saveable_obstack, *current_obstack;
  45.  
  46. extern rtx stack_slot_list;
  47.  
  48. #define MIN(x,y) ((x < y) ? x : y)
  49.  
  50. extern tree pushdecl ();
  51. extern tree poplevel ();
  52.  
  53. /* Default max number of insns a function can have and still be inline.
  54.    This is overridden on RISC machines.  */
  55. #ifndef INTEGRATE_THRESHOLD
  56. #define INTEGRATE_THRESHOLD(DECL) \
  57.   (8 * (8 + list_length (DECL_ARGUMENTS (DECL))))
  58. #endif
  59.  
  60. /* This is the target of the inline function being expanded,
  61.    or NULL if there is none.  */
  62. static rtx inline_target;
  63.  
  64. /* We must take special care not to disrupt life too severely
  65.    when performing procedure integration.  One thing that that
  66.    involves is not creating illegitimate address which reload
  67.    cannot fix.  Since we don't know what the frame pointer is
  68.    not capable of (in a machine independent way), we create
  69.    a pseudo-frame pointer which will have to do for now.  */
  70. static rtx inline_fp_rtx;
  71.  
  72. /* Convert old frame-pointer offsets to new.  Parameters which only
  73.    produce values (no addresses, and are never assigned), map directly
  74.    to the pseudo-reg of the incoming value.  Parameters that are
  75.    assigned to but do not have their address taken are given a fresh
  76.    pseudo-register.  Parameters that have their address take are
  77.    given a fresh stack-slot.  */
  78. static rtx *parm_map;
  79.  
  80. /* ?? Should this be done here??  It is not right now.
  81.    Keep track of whether a given pseudo-register is the sum
  82.    of the frame pointer and a const_int (or zero).  */
  83. static char *fp_addr_p;
  84.  
  85. /* For the local variables of the procdure being integrated that live
  86.    on the frame, FRAME_POINTER_DELTA says how much to change their
  87.    offsets by, so that they now live in the correct place on the
  88.    frame of the function being compiled.  */
  89. static int fp_delta;
  90.  
  91. /* When an insn is being copied by copy_rtx_and_substitute,
  92.    this is nonzero if we have copied an ASM_OPERANDS.
  93.    In that case, it is the original input-operand vector.
  94.    Likewise in copy_for_inline.  */
  95. static rtvec orig_asm_operands_vector;
  96.  
  97. /* When an insn is being copied by copy_rtx_and_substitute,
  98.    this is nonzero if we have copied an ASM_OPERANDS.
  99.    In that case, it is the copied input-operand vector.
  100.    Likewise in copy_for_inline.  */
  101. static rtvec copy_asm_operands_vector;
  102.  
  103. /* Likewise, this is the copied constraints vector.  */
  104. static rtvec copy_asm_constraints_vector;
  105.  
  106. /* Return a copy of an rtx (as needed), substituting pseudo-register,
  107.    labels, and frame-pointer offsets as necessary.  */
  108. static rtx copy_rtx_and_substitute ();
  109. /* Variant, used for memory addresses that are not memory_address_p.  */
  110. static rtx copy_address ();
  111.  
  112. /* Return the rtx corresponding to a given index in the stack arguments.  */
  113. static rtx access_parm_map ();
  114.  
  115. static void copy_parm_decls ();
  116. static void copy_decl_tree ();
  117.  
  118. static rtx try_fold_cc0 ();
  119.  
  120. /* We do some simple constant folding optimization.  This optimization
  121.    really exists primarily to save time inlining a function.  It
  122.    also helps users who ask for inline functions without -O.  */
  123. static rtx fold_out_const_cc0 ();
  124.  
  125. /* Zero if the current function (whose FUNCTION_DECL is FNDECL)
  126.    is safe and reasonable to integrate into other functions.
  127.    Nonzero means value is a warning message with a single %s
  128.    for the function's name.  */
  129.  
  130. char *
  131. function_cannot_inline_p (fndecl)
  132.      register tree fndecl;
  133. {
  134.   register rtx insn;
  135.   tree last = tree_last (TYPE_ARG_TYPES (TREE_TYPE (fndecl)));
  136.   int max_insns = INTEGRATE_THRESHOLD (fndecl);
  137.   register int ninsns = 0;
  138.   register tree parms;
  139.  
  140.   /* No inlines with varargs.  `grokdeclarator' gives a warning
  141.      message about that if `inline' is specified.  This code
  142.      it put in to catch the volunteers.  */
  143.   if (last && TREE_VALUE (last) != void_type_node)
  144.     return "varargs function cannot be inline";
  145.  
  146.   if (current_function_calls_alloca)
  147.     return "function using alloca cannot be inline";
  148.  
  149.   /* If its not even close, don't even look.  */
  150.   if (!TREE_INLINE (fndecl) && get_max_uid () > 3 * max_insns)
  151.     return "function too large to be inline";
  152.  
  153.   /* We can't inline functions that return structures
  154.      the old-fashioned PCC way, copying into a static block.  */
  155. #ifdef PCC_STATIC_STRUCT_RETURN
  156.   if (flag_pcc_struct_return
  157.       && (TYPE_MODE (TREE_TYPE (TREE_TYPE (fndecl))) == BLKmode
  158.       || RETURN_IN_MEMORY (TREE_TYPE (TREE_TYPE (fndecl)))))
  159.     return "inline functions not supported for this return value type";
  160. #endif
  161.  
  162.   /* Don't inline functions which have BLKmode arguments.
  163.      Don't inline functions that take the address of
  164.        a parameter and do not specify a function prototype.  */
  165.   for (parms = DECL_ARGUMENTS (fndecl); parms; parms = TREE_CHAIN (parms))
  166.     {
  167.       if (TYPE_MODE (TREE_TYPE (parms)) == BLKmode)
  168.     return "function with large aggregate parameter cannot be inline";
  169.       if (last == NULL_TREE && TREE_ADDRESSABLE (parms))
  170.     return "no prototype, and parameter address used; cannot be inline";
  171.       /* If an aggregate is thought of as "in memory"
  172.      then its components are referred to by narrower memory refs.
  173.      If the actual parameter is a reg, these refs can't be translated,
  174.      esp. since copy_rtx_and_substitute doesn't know whether it is
  175.      reading or writing.  */
  176.       if ((TREE_CODE (TREE_TYPE (parms)) == RECORD_TYPE
  177.        || TREE_CODE (TREE_TYPE (parms)) == UNION_TYPE)
  178.       && GET_CODE (DECL_RTL (parms)) == MEM)
  179.     return "address of an aggregate parameter is used; cannot be inline";
  180.     }
  181.  
  182.   if (!TREE_INLINE (fndecl) && get_max_uid () > max_insns)
  183.     {
  184.       for (ninsns = 0, insn = get_first_nonparm_insn (); insn && ninsns < max_insns;
  185.        insn = NEXT_INSN (insn))
  186.     {
  187.       if (GET_CODE (insn) == INSN
  188.           || GET_CODE (insn) == JUMP_INSN
  189.           || GET_CODE (insn) == CALL_INSN)
  190.         ninsns++;
  191.     }
  192.  
  193.       if (ninsns >= max_insns)
  194.     return "function too large to be inline";
  195.     }
  196.  
  197.   return 0;
  198. }
  199.  
  200. /* Variables used within save_for_inline.  */
  201.  
  202. /* Mapping from old pesudo-register to new pseudo-registers.
  203.    The first element of this map is reg_map[FIRST_PSEUDO_REGISTER].
  204.    It is allocated in `save_for_inline' and `expand_inline_function',
  205.    and deallocated on exit from each of those routines.  */
  206. static rtx *reg_map;
  207.  
  208. /* Mapping from old code-labels to new code-labels.
  209.    The first element of this map is label_map[min_labelno].
  210.    It is allocated in `save_for_inline' and `expand_inline_function',
  211.    and deallocated on exit from each of those routines.  */
  212. static rtx *label_map;
  213.  
  214. /* Mapping from old insn uid's to copied insns.
  215.    It is allocated in `save_for_inline' and `expand_inline_function',
  216.    and deallocated on exit from each of those routines.  */
  217. static rtx *insn_map;
  218.  
  219. /* Map pseudo reg number into the PARM_DECL for the parm living in the reg.
  220.    Zero for a reg that isn't a parm's home.
  221.    Only reg numbers less than max_parm_reg are mapped here.  */
  222. static tree *parmdecl_map;
  223.  
  224. /* Keep track of first pseudo-register beyond those that are parms.  */
  225. static int max_parm_reg;
  226.  
  227. /* Offset from arg ptr to the first parm of this inline function.  */
  228. static int first_parm_offset;
  229.  
  230. /* On machines that perform a function return with a single
  231.    instruction, such as the VAX, these return insns must be
  232.    mapped into branch statements.  */
  233. extern rtx return_label;
  234.  
  235. /* Copy an rtx for save_for_inline.  */
  236. static rtx copy_for_inline ();
  237.  
  238. /* Make the insns and PARM_DECLs of the current function permanent
  239.    and record other information in DECL_SAVED_INSNS to allow inlining
  240.    of this function in subsequent calls.  */
  241.  
  242. void
  243. save_for_inline (fndecl)
  244.      tree fndecl;
  245. {
  246.   extern rtx *regno_reg_rtx;    /* in emit-rtl.c.  */
  247.   extern current_function_args_size;
  248.  
  249.   rtx first_insn, last_insn, insn;
  250.   rtx head, copy;
  251.   tree parms;
  252.   int max_labelno, min_labelno, i, len;
  253.   int max_reg;
  254.   int max_uid;
  255.  
  256.   /* Make and emit a return-label if we have not already done so.  */
  257.  
  258.   if (return_label == 0)
  259.     {
  260.       return_label = gen_label_rtx ();
  261.       emit_label (return_label);
  262.     }
  263.  
  264.   /* Get some bounds on the labels and registers used.  */
  265.  
  266.   max_labelno = max_label_num ();
  267.   min_labelno = get_first_label_num ();
  268.   max_parm_reg = max_parm_reg_num ();
  269.   max_reg = max_reg_num ();
  270.  
  271.   /* Set up PARMDECL_MAP which maps pseudo-reg number to its PARM_DECL.
  272.  
  273.      Set TREE_VOLATILE to 0 if the parm is in a register, otherwise 1.
  274.      Later we set TREE_READONLY to 0 if the parm is modified inside the fn.  */
  275.  
  276.   parmdecl_map = (tree *) alloca (max_parm_reg * sizeof (tree));
  277.   bzero (parmdecl_map, max_parm_reg * sizeof (tree));
  278.  
  279.   for (parms = DECL_ARGUMENTS (fndecl); parms; parms = TREE_CHAIN (parms))
  280.     {
  281.       rtx p = DECL_RTL (parms);
  282.  
  283.       if (GET_CODE (p) == REG)
  284.     {
  285.       parmdecl_map[REGNO (p)] = parms;
  286.       TREE_VOLATILE (parms) = 0;
  287.     }
  288.       else
  289.     TREE_VOLATILE (parms) = 1;
  290.       TREE_READONLY (parms) = 1;
  291.     }
  292.  
  293.   /* The list of DECL_SAVES_INSNS, starts off with a header which
  294.      contains the following information:
  295.  
  296.      the first insn of the function (not including the insns that copy
  297.      parameters into registers).
  298.      the first label used by that function,
  299.      the last label used by that function,
  300.      and the total number of registers used.  */
  301.  
  302.   head = gen_inline_header_rtx (NULL, NULL, min_labelno, max_labelno,
  303.                 max_parm_reg, max_reg,
  304.                 current_function_args_size, stack_slot_list);
  305.   max_uid = INSN_UID (head);
  306.  
  307.   /* We have now allocated all that needs to be allocated permanently
  308.      on the rtx obstack.  Set our high-water mark, so that we
  309.      can free the rest of this when the time comes.  */
  310.  
  311.   preserve_data ();
  312.  
  313.   /* Copy the chain insns of this function.
  314.      Install the copied chain as the insns of this function,
  315.      for continued compilation;
  316.      the original chain is recorded as the DECL_SAVED_INSNS
  317.      for inlining future calls.  */
  318.  
  319.   /* If there are insns that copy parms from the stack into pseudo registers,
  320.      those insns are not copied.  `expand_inline_function' must
  321.      emit the correct code to handle such things.  */
  322.  
  323.   insn = get_insns ();
  324.   if (GET_CODE (insn) != NOTE)
  325.     abort ();
  326.   first_insn = rtx_alloc (NOTE);
  327.   NOTE_SOURCE_FILE (first_insn) = NOTE_SOURCE_FILE (insn);
  328.   NOTE_LINE_NUMBER (first_insn) = NOTE_LINE_NUMBER (insn);
  329.   INSN_UID (first_insn) = INSN_UID (insn);
  330.   PREV_INSN (first_insn) = NULL;
  331.   NEXT_INSN (first_insn) = NULL;
  332.   last_insn = first_insn;
  333.  
  334.   /* Each pseudo-reg in the old insn chain must have a unique rtx in the copy.
  335.      Make these new rtx's now, and install them in regno_reg_rtx, so they
  336.      will be the official pseudo-reg rtx's for the rest of compilation.  */
  337.  
  338.   reg_map = (rtx *) alloca ((max_reg + 1) * sizeof (rtx));
  339.  
  340.   len = sizeof (struct rtx_def) + (GET_RTX_LENGTH (REG) - 1) * sizeof (rtunion);
  341.   for (i = max_reg - 1; i >= FIRST_PSEUDO_REGISTER; i--)
  342.     reg_map[i] = (rtx)obstack_copy (&maybepermanent_obstack, regno_reg_rtx[i], len);
  343.   bcopy (reg_map + FIRST_PSEUDO_REGISTER,
  344.      regno_reg_rtx + FIRST_PSEUDO_REGISTER,
  345.      (max_reg - FIRST_PSEUDO_REGISTER) * sizeof (rtx));
  346.  
  347.   /* Likewise each label rtx must have a unique rtx as its copy.  */
  348.  
  349.   label_map = (rtx *)alloca ((max_labelno - min_labelno) * sizeof (rtx));
  350.   label_map -= min_labelno;
  351.  
  352.   for (i = min_labelno; i < max_labelno; i++)
  353.     label_map[i] = gen_label_rtx ();
  354.  
  355.   /* Record the mapping of old insns to copied insns.  */
  356.  
  357.   insn_map = (rtx *) alloca (max_uid * sizeof (rtx));
  358.   bzero (insn_map, max_uid * sizeof (rtx));
  359.  
  360.   /* Now copy the chain of insns.  */
  361.  
  362.   for (insn = NEXT_INSN (insn); insn; insn = NEXT_INSN (insn))
  363.     {
  364.       orig_asm_operands_vector = 0;
  365.       copy_asm_operands_vector = 0;
  366.  
  367.       switch (GET_CODE (insn))
  368.     {
  369.     case NOTE:
  370.       /* No need to keep these.  */
  371.       if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_DELETED)
  372.         continue;
  373.  
  374.       copy = rtx_alloc (NOTE);
  375.       NOTE_SOURCE_FILE (copy) = NOTE_SOURCE_FILE (insn);
  376.       NOTE_LINE_NUMBER (copy) = NOTE_LINE_NUMBER (insn);
  377.       break;
  378.  
  379.     case INSN:
  380.     case CALL_INSN:
  381.     case JUMP_INSN:
  382.       copy = rtx_alloc (GET_CODE (insn));
  383.       PATTERN (copy) = copy_for_inline (PATTERN (insn));
  384.       INSN_CODE (copy) = -1;
  385.       LOG_LINKS (copy) = NULL;
  386.       REG_NOTES (copy) = copy_for_inline (REG_NOTES (insn));
  387.       RTX_INTEGRATED_P (copy) = RTX_INTEGRATED_P (insn);
  388.       break;
  389.  
  390.     case CODE_LABEL:
  391.       copy = label_map[CODE_LABEL_NUMBER (insn)];
  392.       break;
  393.  
  394.     case BARRIER:
  395.       copy = rtx_alloc (BARRIER);
  396.       break;
  397.  
  398.     default:
  399.       abort ();
  400.     }
  401.       INSN_UID (copy) = INSN_UID (insn);
  402.       insn_map[INSN_UID (insn)] = copy;
  403.       NEXT_INSN (last_insn) = copy;
  404.       PREV_INSN (copy) = last_insn;
  405.       last_insn = copy;
  406.     }
  407.  
  408.   NEXT_INSN (last_insn) = NULL;
  409.  
  410.   NEXT_INSN (head) = get_first_nonparm_insn ();
  411.   FIRST_PARM_INSN (head) = get_insns ();
  412.   DECL_SAVED_INSNS (fndecl) = head;
  413.   DECL_FRAME_SIZE (fndecl) = get_frame_size ();
  414.   TREE_INLINE (fndecl) = 1;
  415.  
  416.   parmdecl_map = 0;
  417.   label_map = 0;
  418.   reg_map = 0;
  419.   return_label = 0;
  420.  
  421.   set_new_first_and_last_insn (first_insn, last_insn);
  422. }
  423.  
  424. /* Copy the rtx ORIG recursively, replacing pseudo-regs and labels
  425.    according to `reg_map' and `label_map'.
  426.    All other kinds of rtx are copied except those that can never be
  427.    changed during compilation.  */
  428.  
  429. static rtx
  430. copy_for_inline (orig)
  431.      rtx orig;
  432. {
  433.   register rtx x = orig;
  434.   register int i;
  435.   register enum rtx_code code;
  436.   register char *format_ptr;
  437.  
  438.   if (x == 0)
  439.     return x;
  440.  
  441.   code = GET_CODE (x);
  442.  
  443.   /* These types may be freely shared.  */
  444.  
  445.   switch (code)
  446.     {
  447.     case QUEUED:
  448.     case CONST_INT:
  449.     case CONST_DOUBLE:
  450.     case SYMBOL_REF:
  451.     case PC:
  452.     case CC0:
  453.       return x;
  454.  
  455.     case ASM_OPERANDS:
  456.       /* If a single asm insn contains multiple output operands
  457.      then it contains multiple ASM_OPERANDS rtx's that share operand 3.
  458.      We must make sure that the copied insn continues to share it.  */
  459.       if (orig_asm_operands_vector == XVEC (orig, 3))
  460.     {
  461.       x = rtx_alloc (ASM_OPERANDS);
  462.       XSTR (x, 0) = XSTR (orig, 0);
  463.       XSTR (x, 1) = XSTR (orig, 1);
  464.       XINT (x, 2) = XINT (orig, 2);
  465.       XVEC (x, 3) = copy_asm_operands_vector;
  466.       XVEC (x, 4) = copy_asm_constraints_vector;
  467.       XSTR (x, 5) = XSTR (orig, 5);
  468.       XINT (x, 6) = XINT (orig, 6);
  469.       return x;
  470.     }
  471.       break;
  472.  
  473.     case MEM:
  474.       /* A MEM is allowed to be shared if its address is constant
  475.      or is a constant plus one of the special registers.  */
  476.       if (CONSTANT_ADDRESS_P (XEXP (x, 0)))
  477.     return x;
  478. #if 0 /* This is turned off because it is possible for
  479.      unshare_all_rtl to copy the address, into memory that won't be saved.
  480.      Although the MEM can safely be shared, and won't be copied there,
  481.      the address itself cannot be shared, and may need to be copied.  */
  482.       if (GET_CODE (XEXP (x, 0)) == PLUS
  483.       && GET_CODE (XEXP (XEXP (x, 0), 0)) == REG
  484.       && (REGNO (XEXP (XEXP (x, 0), 0)) == FRAME_POINTER_REGNUM
  485.           || REGNO (XEXP (XEXP (x, 0), 0)) == ARG_POINTER_REGNUM)
  486.       && CONSTANT_ADDRESS_P (XEXP (XEXP (x, 0), 1)))
  487. #if 0
  488.     /* This statement was accidentally deleted in the remote past.
  489.        Reinsert it for 1.37.  Don't take the risk now.  */
  490.     return x;
  491. #endif
  492.     if (GET_CODE (XEXP (x, 0)) == REG
  493.         && (REGNO (XEXP (x, 0)) == FRAME_POINTER_REGNUM
  494.         || REGNO (XEXP (x, 0)) == ARG_POINTER_REGNUM)
  495.         && CONSTANT_ADDRESS_P (XEXP (x, 1)))
  496.     return x;
  497. #endif /* 0 */
  498.       break;
  499.  
  500.     case LABEL_REF:
  501.       {
  502.     /* Must point to the new insn.  */
  503.     return gen_rtx (LABEL_REF, GET_MODE (orig),
  504.             label_map[CODE_LABEL_NUMBER (XEXP (orig, 0))]);
  505.       }
  506.  
  507.     case REG:
  508.       if (REGNO (x) >= FIRST_PSEUDO_REGISTER)
  509.     return reg_map [REGNO (x)];
  510.       else
  511.     return x;
  512.  
  513.       /* If a parm that gets modified lives in a pseudo-reg,
  514.      set its TREE_VOLATILE to prevent certain optimizations.  */
  515.     case SET:
  516.       {
  517.     rtx dest = SET_DEST (x);
  518.  
  519.     if (GET_CODE (dest) == REG
  520.         && REGNO (dest) < max_parm_reg
  521.         && REGNO (dest) >= FIRST_PSEUDO_REGISTER
  522.         && parmdecl_map[REGNO (dest)] != 0)
  523.       TREE_READONLY (parmdecl_map[REGNO (dest)]) = 0;
  524.       }
  525.       break;
  526.     }
  527.  
  528.   /* Replace this rtx with a copy of itself.  */
  529.  
  530.   x = rtx_alloc (code);
  531.   bcopy (orig, x, (sizeof (*x) - sizeof (x->fld)
  532.            + sizeof (x->fld[0]) * GET_RTX_LENGTH (code)));
  533.  
  534.   /* Now scan the subexpressions recursively.
  535.      We can store any replaced subexpressions directly into X
  536.      since we know X is not shared!  Any vectors in X
  537.      must be copied if X was copied.  */
  538.  
  539.   format_ptr = GET_RTX_FORMAT (code);
  540.  
  541.   for (i = 0; i < GET_RTX_LENGTH (code); i++)
  542.     {
  543.       switch (*format_ptr++)
  544.     {
  545.     case 'e':
  546.       XEXP (x, i) = copy_for_inline (XEXP (x, i));
  547.       break;
  548.  
  549.     case 'u':
  550.       /* Change any references to old-insns to point to the
  551.          corresponding copied insns.  */
  552.       XEXP (x, i) = insn_map[INSN_UID (XEXP (x, i))];
  553.       break;
  554.  
  555.     case 'E':
  556.       if (XVEC (x, i) != NULL && XVECLEN (x, i) != 0)
  557.         {
  558.           register int j;
  559.  
  560.           XVEC (x, i) = gen_rtvec_v (XVECLEN (x, i), &XVECEXP (x, i, 0));
  561.           for (j = 0; j < XVECLEN (x, i); j++)
  562.         XVECEXP (x, i, j)
  563.           = copy_for_inline (XVECEXP (x, i, j));
  564.         }
  565.       break;
  566.     }
  567.     }
  568.  
  569.   if (code == ASM_OPERANDS && orig_asm_operands_vector == 0)
  570.     {
  571.       orig_asm_operands_vector = XVEC (orig, 3);
  572.       copy_asm_operands_vector = XVEC (x, 3);
  573.       copy_asm_constraints_vector = XVEC (x, 4);
  574.     }
  575.  
  576.   return x;
  577. }
  578.  
  579. /* Integrate the procedure defined by FNDECL.  Note that this function
  580.    may wind up calling itself.  Since the static variables are not
  581.    reentrant, we do not assign them until after the possibility
  582.    or recursion is eliminated.
  583.  
  584.    If IGNORE is nonzero, do not produce a value.
  585.    Otherwise store the value in TARGET if it is nonzero and that is convenient.
  586.  
  587.    Value is:
  588.    (rtx)-1 if we could not substitute the function
  589.    0 if we substituted it and it does not produce a value
  590.    else an rtx for where the value is stored.  */
  591.  
  592. rtx
  593. expand_inline_function (fndecl, parms, target, ignore, type, structure_value_addr)
  594.      tree fndecl, parms;
  595.      rtx target;
  596.      int ignore;
  597.      tree type;
  598.      rtx structure_value_addr;
  599. {
  600.   tree formal, actual;
  601.   rtx header = DECL_SAVED_INSNS (fndecl);
  602.   rtx insns = FIRST_FUNCTION_INSN (header);
  603.   rtx parm_insns = FIRST_PARM_INSN (header);
  604.   rtx insn;
  605.   int max_regno = MAX_REGNUM (header) + 1;
  606.   register int i;
  607.   int min_labelno = FIRST_LABELNO (header);
  608.   int max_labelno = LAST_LABELNO (header);
  609.   int nargs;
  610.   rtx *arg_vec;
  611.   rtx local_return_label = 0;
  612.   rtx follows_call = 0;
  613.   rtx this_struct_value_rtx = 0;
  614.  
  615.   if (max_regno < FIRST_PSEUDO_REGISTER)
  616.     abort ();
  617.  
  618.   nargs = list_length (DECL_ARGUMENTS (fndecl));
  619.  
  620.   /* We expect PARMS to have the right length; don't crash if not.  */
  621.   if (list_length (parms) != nargs)
  622.     return (rtx)-1;
  623.   /* Also check that the parms type match.  Since the appropriate
  624.      conversions or default promotions have already been applied,
  625.      the machine modes should match exactly.  */
  626.   for (formal = DECL_ARGUMENTS (fndecl),
  627.        actual = parms;
  628.        formal;
  629.        formal = TREE_CHAIN (formal),
  630.        actual = TREE_CHAIN (actual))
  631.     {
  632.       tree arg = TREE_VALUE (actual);
  633.       enum machine_mode mode = TYPE_MODE (DECL_ARG_TYPE (formal));
  634.       if (mode != TYPE_MODE (TREE_TYPE (arg)))
  635.     return (rtx)-1;
  636.       /* If they are block mode, the types should match exactly.  */
  637.       if (mode == BLKmode && TREE_TYPE (arg) != TREE_TYPE (formal))
  638.     return (rtx)-1;
  639.     }
  640.  
  641.   /* Make a binding contour to keep inline cleanups called at
  642.      outer function-scope level from looking like they are shadowing
  643.      parameter declarations.  */
  644.   pushlevel (0);
  645.  
  646.   /* Make a fresh binding contour that we can easily remove.  */
  647.   pushlevel (0);
  648.   expand_start_bindings (0);
  649.   if (GET_CODE (parm_insns) == NOTE
  650.       && NOTE_LINE_NUMBER (parm_insns) < 0)
  651.     emit_note (NOTE_SOURCE_FILE (parm_insns), NOTE_LINE_NUMBER (parm_insns));
  652.  
  653.   /* Get all the actual args as RTL, and store them in ARG_VEC.  */
  654.  
  655.   arg_vec = (rtx *)alloca (nargs * sizeof (rtx));
  656.  
  657.   for (formal = DECL_ARGUMENTS (fndecl),
  658.        actual = parms,
  659.        i = 0;
  660.        formal;
  661.        formal = TREE_CHAIN (formal),
  662.        actual = TREE_CHAIN (actual),
  663.        i++)
  664.     {
  665.       /* Actual parameter, already converted to DECL_ARG_TYPE (formal).  */
  666.       tree arg = TREE_VALUE (actual);
  667.       /* Mode of the value supplied.  */
  668.       enum machine_mode tmode = TYPE_MODE (DECL_ARG_TYPE (formal));
  669.       /* Mode of the variable used within the function.  */
  670.       enum machine_mode imode = TYPE_MODE (TREE_TYPE (formal));
  671.       rtx copy;
  672.  
  673.       emit_note (DECL_SOURCE_FILE (formal), DECL_SOURCE_LINE (formal));
  674.  
  675.       /* Make a place to hold the argument value, still in mode TMODE,
  676.      and put it in COPY.  */
  677.       if (TREE_ADDRESSABLE (formal))
  678.     {
  679.       int size = int_size_in_bytes (DECL_ARG_TYPE (formal));
  680.       copy = assign_stack_local (tmode, size);
  681.       if (!memory_address_p (DECL_MODE (formal), XEXP (copy, 0)))
  682.         copy = change_address (copy, VOIDmode, copy_rtx (XEXP (copy, 0)));
  683.       store_expr (arg, copy, 0);
  684.     }
  685.       else if (! TREE_READONLY (formal)
  686.            || TREE_VOLATILE (formal))
  687.     {
  688.       /* If parm is modified or if it hasn't a pseudo reg,
  689.          we may not simply substitute the actual value;
  690.          copy it through a register.  */
  691.       copy = gen_reg_rtx (tmode);
  692.       store_expr (arg, copy, 0);
  693.     }
  694.       else
  695.     {
  696.       copy = expand_expr (arg, 0, tmode, 0);
  697.  
  698.       /* We do not use CONSTANT_ADDRESS_P here because
  699.          the set of cases where that might make a difference
  700.          are a subset of the cases that arise even when
  701.          it is a CONSTANT_ADDRESS_P (i.e., fp_delta
  702.          gets into the act.  */
  703.       if (GET_CODE (copy) != REG && ! CONSTANT_P (copy))
  704.         copy = copy_to_reg (copy);
  705.     }
  706.       /* If passed mode != nominal mode, COPY is now the passed mode.
  707.      Convert it to the nominal mode (i.e. truncate it).  */
  708.       if (tmode != imode)
  709.     copy = convert_to_mode (imode, copy, 0);
  710.       arg_vec[i] = copy;
  711.     }
  712.  
  713.   copy_parm_decls (DECL_ARGUMENTS (fndecl), arg_vec);
  714.  
  715.   /* Perform postincrements before actually calling the function.  */
  716.   emit_queue ();
  717.  
  718.   /* clean up stack so that variables might have smaller offsets.  */
  719.   do_pending_stack_adjust ();
  720.  
  721.   /* Pass the function the address in which to return a structure value.  */
  722.   if (structure_value_addr)
  723.     {
  724.       if (GET_CODE (structure_value_addr) == REG
  725.       && (struct_value_rtx == 0 || GET_CODE (struct_value_rtx) == MEM))
  726.     this_struct_value_rtx = structure_value_addr;
  727.       else
  728.      this_struct_value_rtx = copy_to_mode_reg (Pmode, structure_value_addr);
  729.     }
  730.  
  731.   /* Now prepare for copying the insns.
  732.      Set up reg_map, parm_map and label_map saying how to translate
  733.      the pseudo-registers, stack-parm references and labels when copying.  */
  734.  
  735.   reg_map = (rtx *) alloca (max_regno * sizeof (rtx));
  736.   bzero (reg_map, max_regno * sizeof (rtx));
  737.  
  738.   parm_map = (rtx *)alloca ((FUNCTION_ARGS_SIZE (header) + UNITS_PER_WORD - 1)
  739.                 / UNITS_PER_WORD * sizeof (rtx));
  740.   bzero (parm_map, ((FUNCTION_ARGS_SIZE (header) + UNITS_PER_WORD - 1)
  741.             / UNITS_PER_WORD * sizeof (rtx)));
  742.  
  743.   /* Note that expand_expr (called above) can clobber first_parm_offset.  */
  744.   first_parm_offset = FIRST_PARM_OFFSET (fndecl);
  745.   parm_map -= first_parm_offset / UNITS_PER_WORD;
  746.  
  747.   if (DECL_ARGUMENTS (fndecl))
  748.     {
  749.       tree decl = DECL_ARGUMENTS (fndecl);
  750.  
  751.       for (formal = decl, i = 0; formal; formal = TREE_CHAIN (formal), i++)
  752.     {
  753.       /* Create an entry in PARM_MAP that says what pseudo register
  754.          is associated with an address we might compute.  */
  755.       if (DECL_OFFSET (formal) >= 0)
  756.         {
  757.           /* This parameter has a home in the stack.  */
  758.           parm_map[DECL_OFFSET (formal) / BITS_PER_WORD] = arg_vec[i];
  759.         }
  760.       else
  761.         {
  762.           /* Parameter that was passed in a register;
  763.          does it have a home on the stack (as a local)?  */
  764.           rtx frtx = DECL_RTL (formal);
  765.           rtx offset = 0;
  766.           if (GET_CODE (frtx) == MEM)
  767.         {
  768.           frtx = XEXP (frtx, 0);
  769.           if (GET_CODE (frtx) == PLUS)
  770.             {
  771.               if (XEXP (frtx, 0) == frame_pointer_rtx
  772.               && GET_CODE (XEXP (frtx, 1)) == CONST_INT)
  773.             offset = XEXP (frtx, 1);
  774.               else if (XEXP (frtx, 1) == frame_pointer_rtx
  775.                    && GET_CODE (XEXP (frtx, 0)) == CONST_INT)
  776.             offset = XEXP (frtx, 0);
  777. #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
  778.               /* If there is a separate arg pointer
  779.              and REG_PARM_STACK_SPACE is defined,
  780.              parms passed in regs can be copied
  781.              to slots reached via the arg pointer.  */
  782.               if (XEXP (frtx, 0) == arg_pointer_rtx
  783.               && GET_CODE (XEXP (frtx, 1)) == CONST_INT)
  784.             offset = XEXP (frtx, 1);
  785.               else if (XEXP (frtx, 1) == arg_pointer_rtx
  786.                    && GET_CODE (XEXP (frtx, 0)) == CONST_INT)
  787.             offset = XEXP (frtx, 0);
  788. #endif
  789.             }
  790.           if (offset)
  791.             parm_map[INTVAL (offset) / UNITS_PER_WORD] = arg_vec[i];
  792.           else if (TREE_TYPE (formal) != error_mark_node)
  793.             abort ();
  794.         }
  795.           else if (GET_CODE (frtx) != REG)
  796.         abort ();
  797.         }
  798.       /* Create an entry in REG_MAP that says what rtx is associated
  799.          with a pseudo register from the function being inlined.  */
  800.       if (GET_CODE (DECL_RTL (formal)) == REG)
  801.         reg_map[REGNO (DECL_RTL (formal))] = arg_vec[i];
  802.     }
  803.     }
  804.  
  805. #if 0  /* This was turned off when it was written,
  806.       because expand_call was changed not to need it.  */
  807.   /* Handle the case where our caller offers a register target
  808.      but the called function wants to return the value in memory.  */
  809.   if (this_struct_value_rtx == 0
  810.       && aggregate_value_p (DECL_RESULT (fndecl)))
  811.     {
  812.       enum machine_mode mode1 = GET_MODE (DECL_RTL (DECL_RESULT (fndecl)));
  813.       this_struct_value_rtx
  814.     = assign_stack_local (mode1, GET_MODE_SIZE (mode1));
  815.       target = 0;
  816.     }
  817. #endif
  818.  
  819.   /* Make certain that we can accept struct_value_{incoming_rtx,rtx},
  820.      and map it.  */
  821.   if (this_struct_value_rtx == 0)
  822.     ;
  823.   else if (GET_CODE (struct_value_incoming_rtx) == REG)
  824.     reg_map[REGNO (XEXP (DECL_RTL (DECL_RESULT (fndecl)), 0))]
  825.       = this_struct_value_rtx;
  826.   else if (GET_CODE (struct_value_incoming_rtx) == MEM
  827.        && XEXP (XEXP (struct_value_incoming_rtx, 0), 0) == frame_pointer_rtx
  828.        && GET_CODE (XEXP (XEXP (struct_value_incoming_rtx, 0), 1)) == CONST_INT)
  829.     reg_map[REGNO (XEXP (DECL_RTL (DECL_RESULT (fndecl)), 0))]
  830.       = this_struct_value_rtx;
  831. #if 0
  832.     parm_map[INTVAL (XEXP (XEXP (struct_value_incoming_rtx, 0), 1)) / UNITS_PER_WORD]
  833.       = this_struct_value_rtx;
  834. #endif
  835.   else
  836.     abort ();
  837.  
  838.   label_map = (rtx *)alloca ((max_labelno - min_labelno) * sizeof (rtx));
  839.   label_map -= min_labelno;
  840.  
  841.   for (i = min_labelno; i < max_labelno; i++)
  842.     label_map[i] = gen_label_rtx ();
  843.  
  844.   /* As we copy insns, record the correspondence, so that inter-insn
  845.      references can be copied into isomorphic structure.  */
  846.  
  847.   insn_map = (rtx *) alloca (INSN_UID (header) * sizeof (rtx));
  848.   bzero (insn_map, INSN_UID (header) * sizeof (rtx));
  849.  
  850.   /* Set up a target to translate the inline function's value-register.  */
  851.  
  852.   if (this_struct_value_rtx != 0 || TYPE_MODE (type) == VOIDmode)
  853.     inline_target = 0;
  854.   else
  855.     {
  856.       /* Machine mode function was declared to return.   */
  857.       enum machine_mode departing_mode = TYPE_MODE (type);
  858.       /* (Possibly wider) machine mode it actually computes
  859.      (for the sake of callers that fail to declare it right).  */
  860.       enum machine_mode arriving_mode
  861.     = TYPE_MODE (DECL_RESULT_TYPE (fndecl));
  862.  
  863.       /* Don't use MEMs as direct targets because on some machines
  864.      substituting a MEM for a REG makes invalid insns.
  865.      Let the combiner substitute the MEM if that is valid.  */
  866.       if (target && GET_CODE (target) == REG
  867.       && GET_MODE (target) == departing_mode)
  868.     inline_target = target;
  869.       else
  870.     inline_target = target = gen_reg_rtx (departing_mode);
  871.  
  872.       /* If function's value was promoted before return,
  873.      avoid machine mode mismatch when we substitute INLINE_TARGET.
  874.      But TARGET is what we will return to the caller.  */
  875.       if (arriving_mode != departing_mode)
  876.     inline_target = gen_rtx (SUBREG, arriving_mode, target, 0);
  877.     }
  878.  
  879.   /* Make space in current function's stack frame
  880.      for the stack frame of the inline function.
  881.      Adjust all frame-pointer references by the difference
  882.      between the offset to this space
  883.      and the offset to the equivalent space in the inline
  884.      function's frame.
  885.      This difference equals the size of preexisting locals.  */
  886.  
  887.   fp_delta = get_frame_size ();
  888. #ifdef FRAME_GROWS_DOWNWARD
  889.   fp_delta = - fp_delta;
  890. #endif
  891.  
  892.   inline_fp_rtx
  893.     = copy_to_mode_reg (Pmode,
  894.             plus_constant (frame_pointer_rtx, fp_delta));
  895.  
  896.   /* Now allocate the space for that to point at.  */
  897.  
  898.   assign_stack_local (VOIDmode, DECL_FRAME_SIZE (fndecl));
  899.  
  900.   /* Now copy the insns one by one.  */
  901.  
  902.   for (insn = insns; insn; insn = NEXT_INSN (insn))
  903.     {
  904.       rtx copy, pattern, next = 0;
  905.  
  906.       orig_asm_operands_vector = 0;
  907.       copy_asm_operands_vector = 0;
  908.  
  909.       switch (GET_CODE (insn))
  910.     {
  911.     case INSN:
  912.       pattern = PATTERN (insn);
  913.  
  914.       /* Special handling for the insn immediately after a CALL_INSN
  915.          that returned a value:
  916.          If it does copy the value, we must avoid the usual translation
  917.          of the return-register into INLINE_TARGET.
  918.          If it just USEs the value, the inline function expects it to
  919.          stay in the return-register and be returned,
  920.          so copy it into INLINE_TARGET.  */
  921.  
  922.       if (follows_call
  923.           /* Allow a stack-adjust, handled normally, to come in between
  924.          the call and the value-copying insn.  */
  925.           && ! (GET_CODE (pattern) == SET
  926.             && SET_DEST (pattern) == stack_pointer_rtx))
  927.         {
  928.           if (GET_CODE (pattern) == SET
  929.           && rtx_equal_p (SET_SRC (pattern), follows_call))
  930.         /* This insn copies the value: take special care to copy
  931.            that value to this insn's destination.  */
  932.         {
  933.           copy = emit_insn (gen_rtx (SET, VOIDmode,
  934.                          copy_rtx_and_substitute (SET_DEST (pattern)),
  935.                          follows_call));
  936.           RTX_INTEGRATED_P (copy) = 1;
  937.           follows_call = 0;
  938.           break;
  939.         }
  940.           else if (GET_CODE (pattern) == USE
  941.                && rtx_equal_p (XEXP (pattern, 0), follows_call))
  942.         /* This insn does nothing but says the value is expected
  943.            to flow through to the inline function's return-value.
  944.            Make that happen, then ignore this insn.  */
  945.         {
  946.           copy = emit_insn (gen_rtx (SET, VOIDmode, inline_target,
  947.                          follows_call));
  948.           RTX_INTEGRATED_P (copy) = 1;
  949.           follows_call = 0;
  950.           break;
  951.         }
  952.           /* If it does neither, this value must be ignored.  */
  953.           follows_call = 0;
  954.         }
  955.  
  956.       /* The (USE (REG n)) at return from the function should be ignored
  957.          since we are changing (REG n) into inline_target.  */
  958.       copy = 0;
  959.       if (GET_CODE (pattern) == USE
  960.           && GET_CODE (XEXP (pattern, 0)) == REG
  961.           && REG_FUNCTION_VALUE_P (XEXP (pattern, 0)))
  962.         break;
  963.       /* Ignore setting a function value that we don't want to use.  */
  964.       if (inline_target == 0
  965.           && GET_CODE (pattern) == SET
  966.           && GET_CODE (SET_DEST (pattern)) == REG
  967.           && REG_FUNCTION_VALUE_P (SET_DEST (pattern)))
  968.         break;
  969.  
  970.       /* Try to do some quick constant folding here.
  971.          This will save save execution time of the compiler,
  972.          as well time and space of the program if done here.  */
  973.       if (GET_CODE (pattern) == SET
  974.           && SET_DEST (pattern) == cc0_rtx)
  975.         next = try_fold_cc0 (insn);
  976.  
  977.       if (next != 0)
  978.         {
  979.           insn = next;
  980.         }
  981.       else
  982.         {
  983.           rtx note = find_reg_note (insn, REG_EQUIV, 0);
  984.  
  985.           copy = emit_insn (copy_rtx_and_substitute (pattern));
  986.           RTX_INTEGRATED_P (copy) = 1;
  987.  
  988.           /* If we are copying an insn that loads a constant,
  989.          record the constantness.  */
  990.           if (note)
  991.         REG_NOTES (copy)
  992.           = gen_rtx (EXPR_LIST, REG_EQUIV, XEXP (note, 0),
  993.                  REG_NOTES (copy));
  994.         }
  995.       break;
  996.  
  997.     case JUMP_INSN:
  998.       follows_call = 0;
  999.       if (GET_CODE (PATTERN (insn)) == RETURN)
  1000.         {
  1001.           if (local_return_label == 0)
  1002.         local_return_label = gen_label_rtx ();
  1003.           emit_jump (local_return_label);
  1004.           break;
  1005.         }
  1006.       copy = emit_jump_insn (copy_rtx_and_substitute (PATTERN (insn)));
  1007.       RTX_INTEGRATED_P (copy) = 1;
  1008.       break;
  1009.  
  1010.     case CALL_INSN:
  1011. #if 0
  1012.       /* This should no longer be necessary now that references
  1013.          to this function's return value are flagged to distinguish
  1014.          them from other references to the same hard register.  */
  1015.       {
  1016.         rtx newbod;
  1017.         /* If the call's body is (set (reg...) (call...)),
  1018.            the register is a function return register, but DON'T
  1019.            translate it into INLINE_TARGET because it describes the
  1020.            called function, not the caller's return value.  */
  1021.         if (GET_CODE (PATTERN (insn)) == SET)
  1022.           newbod = gen_rtx (SET, VOIDmode, SET_DEST (PATTERN (insn)),
  1023.                 copy_rtx_and_substitute (SET_SRC (PATTERN (insn))));
  1024.         else if (GET_CODE (PATTERN (insn)) == PARALLEL
  1025.              && GET_CODE (XVECEXP (PATTERN (insn), 0, 0)) == SET)
  1026.           {
  1027.         register int j;
  1028.         rtx newelem;
  1029.         newbod = gen_rtx (PARALLEL, VOIDmode,
  1030.                   rtvec_alloc (XVECLEN (PATTERN (insn), 0)));
  1031.         newelem = gen_rtx (SET, VOIDmode,
  1032.                    SET_DEST (XVECEXP (PATTERN (insn), 0, 0)),
  1033.                    copy_rtx_and_substitute (SET_SRC (XVECEXP (PATTERN (insn), 0, 0))));
  1034.         XVECEXP (newbod, 0, 0) = newelem;
  1035.         for (j = 1; j < XVECLEN (newbod, 0); j++)
  1036.           XVECEXP (newbod, 0, j)
  1037.             = copy_rtx_and_substitute (XVECEXP (PATTERN (insn), 0, j));
  1038.           }
  1039.         else
  1040.           newbod = copy_rtx_and_substitute (PATTERN (insn));
  1041.         copy = emit_call_insn (newbod);
  1042.       }
  1043. #else /* 1 */
  1044.       copy = emit_call_insn (copy_rtx_and_substitute (PATTERN (insn)));
  1045. #endif /* 1 */
  1046.       RTX_INTEGRATED_P (copy) = 1;
  1047.       /* Special handling needed for the following INSN depending on
  1048.          whether it copies the value from the fcn return reg.  */
  1049.       if (GET_CODE (PATTERN (insn)) == SET)
  1050.         follows_call = SET_DEST (PATTERN (insn));
  1051.       else if (GET_CODE (PATTERN (insn)) == PARALLEL
  1052.            && GET_CODE (XVECEXP (PATTERN (insn), 0, 0)) == SET)
  1053.         follows_call = SET_DEST (XVECEXP (PATTERN (insn), 0, 0));
  1054.       break;
  1055.  
  1056.     case CODE_LABEL:
  1057.       copy = emit_label (label_map[CODE_LABEL_NUMBER (insn)]);
  1058.       follows_call = 0;
  1059.       break;
  1060.  
  1061.     case BARRIER:
  1062.       copy = emit_barrier ();
  1063.       break;
  1064.  
  1065.     case NOTE:
  1066.       if (NOTE_LINE_NUMBER (insn) != NOTE_INSN_FUNCTION_END
  1067.           && NOTE_LINE_NUMBER (insn) != NOTE_INSN_FUNCTION_BEG)
  1068.         copy = emit_note (NOTE_SOURCE_FILE (insn), NOTE_LINE_NUMBER (insn));
  1069.       else
  1070.         copy = 0;
  1071.       break;
  1072.  
  1073.     default:
  1074.       abort ();
  1075.       break;
  1076.     }
  1077.  
  1078.       insn_map[INSN_UID (insn)] = copy;
  1079.     }
  1080.  
  1081.   if (local_return_label)
  1082.     emit_label (local_return_label);
  1083.  
  1084.   /* Make copies of the decls of the symbols in the inline function, so that
  1085.      the copies of the variables get declared in the current function.  */
  1086.   copy_decl_tree (DECL_INITIAL (fndecl), 0);
  1087.  
  1088.   /* End the scope containing the copied formal parameter variables.  */
  1089.  
  1090.   expand_end_bindings (getdecls (), 1, 1);
  1091.   poplevel (1, 1, 0);
  1092.   poplevel (0, 0, 0);
  1093.  
  1094.   emit_line_note (input_filename, lineno);
  1095.   reg_map = NULL;
  1096.   label_map = NULL;
  1097.  
  1098.   if (ignore || TYPE_MODE (type) == VOIDmode)
  1099.     return 0;
  1100.  
  1101.   if (structure_value_addr)
  1102.     {
  1103.       if (target)
  1104.     return target;
  1105.       return gen_rtx (MEM, TYPE_MODE (type),
  1106.               memory_address (BLKmode, structure_value_addr));
  1107.     }
  1108.  
  1109.   return target;
  1110. }
  1111.  
  1112. /* Given a chain of PARM_DECLs, ARGS, and a vector of RTL homes VEC,
  1113.    copy each decl into a VAR_DECL, push all of those decls
  1114.    and give each one the corresponding home.  */
  1115.  
  1116. static void
  1117. copy_parm_decls (args, vec)
  1118.      tree args;
  1119.      rtx *vec;
  1120. {
  1121.   register tree tail;
  1122.   register int i;
  1123.  
  1124.   for (tail = args, i = 0; tail; tail = TREE_CHAIN (tail), i++)
  1125.     {
  1126.       register tree decl = pushdecl (build_decl (VAR_DECL, DECL_NAME (tail),
  1127.                          TREE_TYPE (tail)));
  1128.       /* These args would always appear unused, if not for this.  */
  1129.       TREE_USED (decl) = 1;
  1130.       DECL_RTL (decl) = vec[i];
  1131.     }
  1132. }
  1133.  
  1134. /* Given a LET_STMT node, push decls and levels
  1135.    so as to construct in the current function a tree of contexts
  1136.    isomorphic to the one that is given.  */
  1137.  
  1138. static void
  1139. copy_decl_tree (let, level)
  1140.      tree let;
  1141.      int level;
  1142. {
  1143.   tree t, node;
  1144.  
  1145.   pushlevel (0);
  1146.   
  1147.   for (t = STMT_VARS (let); t; t = TREE_CHAIN (t))
  1148.     {
  1149.       tree d = build_decl (TREE_CODE (t), DECL_NAME (t), TREE_TYPE (t));
  1150.       DECL_SOURCE_LINE (d) = DECL_SOURCE_LINE (t);
  1151.       DECL_SOURCE_FILE (d) = DECL_SOURCE_FILE (t);
  1152.       if (DECL_RTL (t) != 0)
  1153.     {
  1154.       if (GET_CODE (DECL_RTL (t)) == MEM
  1155.           && CONSTANT_ADDRESS_P (XEXP (DECL_RTL (t), 0)))
  1156.         /* copy_rtx_and_substitute would call memory_address
  1157.            which would copy the address into a register.
  1158.            Then debugging-output wouldn't know how to handle it.  */
  1159.         DECL_RTL (d) = DECL_RTL (t);
  1160.       else
  1161.         DECL_RTL (d) = copy_rtx_and_substitute (DECL_RTL (t));
  1162.     }
  1163.       TREE_EXTERNAL (d) = TREE_EXTERNAL (t);
  1164.       TREE_STATIC (d) = TREE_STATIC (t);
  1165.       TREE_PUBLIC (d) = TREE_PUBLIC (t);
  1166.       TREE_LITERAL (d) = TREE_LITERAL (t);
  1167.       TREE_ADDRESSABLE (d) = TREE_ADDRESSABLE (t);
  1168.       TREE_READONLY (d) = TREE_READONLY (t);
  1169.       TREE_VOLATILE (d) = TREE_VOLATILE (t);
  1170.       /* These args would always appear unused, if not for this.  */
  1171.       TREE_USED (d) = 1;
  1172.       pushdecl (d);
  1173.     }
  1174.  
  1175.   for (t = STMT_SUBBLOCKS (let); t; t = TREE_CHAIN (t))
  1176.     copy_decl_tree (t, level + 1);
  1177.  
  1178.   node = poplevel (level > 0, 0, 0);
  1179.   if (node)
  1180.     TREE_USED (node) = TREE_USED (let);
  1181. }
  1182.  
  1183. /* Create a new copy of an rtx.
  1184.    Recursively copies the operands of the rtx,
  1185.    except for those few rtx codes that are sharable.  */
  1186.  
  1187. static rtx
  1188. copy_rtx_and_substitute (orig)
  1189.      register rtx orig;
  1190. {
  1191.   register rtx copy, temp;
  1192.   register int i, j;
  1193.   register RTX_CODE code;
  1194.   register enum machine_mode mode;
  1195.   register char *format_ptr;
  1196.   int regno;
  1197.  
  1198.   if (orig == 0)
  1199.     return 0;
  1200.  
  1201.   code = GET_CODE (orig);
  1202.   mode = GET_MODE (orig);
  1203.  
  1204.   switch (code)
  1205.     {
  1206.     case REG:
  1207.       /* If a frame-pointer register shows up, then we
  1208.      must `fix' the reference.  If the stack pointer
  1209.      register shows up, it must be part of stack-adjustments
  1210.      (*not* because we eliminated the frame pointer!).
  1211.      Small hard registers are returned as-is.  Pseudo-registers
  1212.      go through their `reg_map'.  */
  1213.       regno = REGNO (orig);
  1214.       if (regno < FIRST_PSEUDO_REGISTER)
  1215.     {
  1216.       /* Some hard registers are also mapped,
  1217.          but others are not translated.  */
  1218.       if (reg_map[regno] != 0)
  1219.         return reg_map[regno];
  1220.       if (REG_FUNCTION_VALUE_P (orig))
  1221.         {
  1222.           /* This is a reference to the function return value.  If
  1223.          the function doesn't have a return value, error.
  1224.          If it does, it may not be the same mode as `inline_target'
  1225.          because SUBREG is not required for hard regs.
  1226.          If not, adjust mode of inline_target to fit the context.  */
  1227.           if (inline_target == 0)
  1228.         abort ();
  1229.           if (mode == GET_MODE (inline_target))
  1230.         return inline_target;
  1231.           return gen_rtx (SUBREG, mode, inline_target, 0);
  1232.         }
  1233.       if (regno == FRAME_POINTER_REGNUM)
  1234.         return plus_constant (orig, fp_delta);
  1235.       return orig;
  1236.     }
  1237.       if (reg_map[regno] == NULL)
  1238.     reg_map[regno] = gen_reg_rtx (mode);
  1239.       return reg_map[regno];
  1240.  
  1241.     case SUBREG:
  1242.       copy = copy_rtx_and_substitute (SUBREG_REG (orig));
  1243.       /* SUBREG is ordinary, but don't make nested SUBREGs.  */
  1244.       if (GET_CODE (copy) == SUBREG)
  1245.     return gen_rtx (SUBREG, GET_MODE (orig), SUBREG_REG (copy),
  1246.             SUBREG_WORD (orig) + SUBREG_WORD (copy));
  1247.       return gen_rtx (SUBREG, GET_MODE (orig), copy,
  1248.               SUBREG_WORD (orig));
  1249.  
  1250.     case CODE_LABEL:
  1251.       return label_map[CODE_LABEL_NUMBER (orig)];
  1252.  
  1253.     case LABEL_REF:
  1254.       copy = rtx_alloc (LABEL_REF);
  1255.       PUT_MODE (copy, mode);
  1256.       XEXP (copy, 0) = label_map[CODE_LABEL_NUMBER (XEXP (orig, 0))];
  1257.       return copy;
  1258.  
  1259.     case PC:
  1260.     case CC0:
  1261.     case CONST_INT:
  1262.     case CONST_DOUBLE:
  1263.     case SYMBOL_REF:
  1264.       return orig;
  1265.  
  1266.     case ASM_OPERANDS:
  1267.       /* If a single asm insn contains multiple output operands
  1268.      then it contains multiple ASM_OPERANDS rtx's that share operand 3.
  1269.      We must make sure that the copied insn continues to share it.  */
  1270.       if (orig_asm_operands_vector == XVEC (orig, 3))
  1271.     {
  1272.       copy = rtx_alloc (ASM_OPERANDS);
  1273.       XSTR (copy, 0) = XSTR (orig, 0);
  1274.       XSTR (copy, 1) = XSTR (orig, 1);
  1275.       XINT (copy, 2) = XINT (orig, 2);
  1276.       XVEC (copy, 3) = copy_asm_operands_vector;
  1277.       XVEC (copy, 4) = copy_asm_constraints_vector;
  1278.       XSTR (copy, 5) = XSTR (orig, 5);
  1279.       XINT (copy, 6) = XINT (orig, 6);
  1280.       return copy;
  1281.     }
  1282.       break;
  1283.  
  1284.     case CALL:
  1285.       /* This is given special treatment because the first
  1286.      operand of a CALL is a (MEM ...) which may get
  1287.      forced into a register for cse.  This is undesirable
  1288.      if function-address cse isn't wanted or if we won't do cse.  */
  1289. #ifndef NO_FUNCTION_CSE
  1290.       if (! (optimize && ! flag_no_function_cse))
  1291. #endif
  1292.     return gen_rtx (CALL, GET_MODE (orig),
  1293.             gen_rtx (MEM, GET_MODE (XEXP (orig, 0)),
  1294.                  copy_rtx_and_substitute (XEXP (XEXP (orig, 0), 0))),
  1295.             copy_rtx_and_substitute (XEXP (orig, 1)));
  1296.       break;
  1297.  
  1298.     case PLUS:
  1299.       /* Note:  the PLUS case is not nearly as careful as the MEM
  1300.      case in terms of preserving addresses.  The reason for this
  1301.      is that it is expected that if a PLUS_EXPR turns out not
  1302.      to be a legitimate address, reload can fix that up, without
  1303.      doing major damage.  However, a MEM rtx must preside
  1304.      over a legitimate address.  The MEM case has lots of hair
  1305.      to deal with what happens when it sits on a PLUS...  */
  1306.       /* Take care of the easy case quickly.  */
  1307.       if (XEXP (orig, 0) == frame_pointer_rtx
  1308.       || XEXP (orig, 1) == frame_pointer_rtx
  1309.       || (ARG_POINTER_REGNUM != FRAME_POINTER_REGNUM
  1310.           && (XEXP (orig, 0) == arg_pointer_rtx
  1311.           || XEXP (orig, 1) == arg_pointer_rtx)))
  1312.     {
  1313.       rtx reg;
  1314.       if (XEXP (orig, 0) == frame_pointer_rtx
  1315.           || XEXP (orig, 0) == arg_pointer_rtx)
  1316.         reg = XEXP (orig, 0), copy = XEXP (orig, 1);
  1317.       else
  1318.         reg = XEXP (orig, 1), copy = XEXP (orig, 0);
  1319.  
  1320.       if (GET_CODE (copy) == CONST_INT)
  1321.         {
  1322.           int c = INTVAL (copy);
  1323.  
  1324. #if defined( DSP56000 ) || defined( DSP96000 )
  1325.           /* we must reverse the mode of comparison here when
  1326.          the stack grows upward: the address of the first
  1327.          parameter is < the address of all local variables. */
  1328.           if (reg == arg_pointer_rtx && c <= first_parm_offset)
  1329. #else
  1330.           if (reg == arg_pointer_rtx && c >= first_parm_offset)
  1331. #endif
  1332.         {
  1333.           copy = access_parm_map (c, VOIDmode);
  1334.           if (GET_CODE (copy) != MEM)
  1335.             /* Should not happen, because a parm we need to address
  1336.                should not be living in a register.
  1337.                (expand_inline_function copied it to a stack slot.)  */
  1338.             abort ();
  1339.           return XEXP (copy, 0);
  1340.         }
  1341.           return gen_rtx (PLUS, mode,
  1342.                   frame_pointer_rtx,
  1343.                   gen_rtx (CONST_INT, SImode,
  1344.                        c + fp_delta));
  1345.         }
  1346.       copy = copy_rtx_and_substitute (copy);
  1347.       temp = force_reg (mode, gen_rtx (PLUS, mode, frame_pointer_rtx, copy));
  1348.       return plus_constant (temp, fp_delta);
  1349.     }
  1350.       else if (reg_mentioned_p (frame_pointer_rtx, orig)
  1351.            || (ARG_POINTER_REGNUM != FRAME_POINTER_REGNUM
  1352.            && reg_mentioned_p (arg_pointer_rtx, orig)))
  1353.     {
  1354.       /* If we have a complex sum which has a frame pointer
  1355.          in it, and it was a legitimate address, then
  1356.          keep it that way.  */
  1357.       if (memory_address_p (mode, orig))
  1358.         {
  1359.           if (GET_CODE (XEXP (orig, 0)) == CONST_INT)
  1360.         {
  1361.           copy = copy_rtx_and_substitute (XEXP (orig, 1));
  1362.           temp = plus_constant (copy, INTVAL (XEXP (orig, 0)));
  1363.         }
  1364.           else if (GET_CODE (XEXP (orig, 1)) == CONST_INT)
  1365.         {
  1366.           copy = copy_rtx_and_substitute (XEXP (orig, 0));
  1367.           temp = plus_constant (copy, INTVAL (XEXP (orig, 1)));
  1368.         }
  1369.           else
  1370.         {
  1371.           temp = gen_rtx (PLUS, GET_MODE (orig),
  1372.                   copy_rtx_and_substitute (XEXP (orig, 0)),
  1373.                   copy_rtx_and_substitute (XEXP (orig, 1)));
  1374.         }
  1375.           temp = memory_address (mode, temp);
  1376.         }
  1377.       else
  1378.         temp = gen_rtx (PLUS, GET_MODE (orig),
  1379.                 copy_rtx_and_substitute (XEXP (orig, 0)),
  1380.                 copy_rtx_and_substitute (XEXP (orig, 1)));
  1381.     }
  1382.       else
  1383.     temp = gen_rtx (PLUS, GET_MODE (orig),
  1384.             copy_rtx_and_substitute (XEXP (orig, 0)),
  1385.             copy_rtx_and_substitute (XEXP (orig, 1)));
  1386.  
  1387.       return temp;
  1388.  
  1389.     case MEM:
  1390.       /* Take care of easiest case here.  */
  1391.       copy = XEXP (orig, 0);
  1392.       if (copy == frame_pointer_rtx || copy == arg_pointer_rtx)
  1393.     return gen_rtx (MEM, mode,
  1394.             plus_constant (frame_pointer_rtx, fp_delta));
  1395.  
  1396.       /* Allow a pushing-address even if that is not valid as an
  1397.      ordinary memory address.  It indicates we are inlining a special
  1398.      push-insn.  These must be copied; otherwise unshare_all_rtl
  1399.      might clobber them to point at temporary rtl of this function.  */
  1400. #ifdef STACK_GROWS_DOWNWARD
  1401.       if (GET_CODE (copy) == PRE_DEC && XEXP (copy, 0) == stack_pointer_rtx)
  1402.     return gen_rtx (MEM, mode, copy_rtx_and_substitute (copy));
  1403. #else
  1404.       if (GET_CODE (copy) == PRE_INC && XEXP (copy, 0) == stack_pointer_rtx)
  1405.     return gen_rtx (MEM, mode, copy_rtx_and_substitute (copy));
  1406. #endif
  1407.  
  1408.       /* If this is some other sort of address that isn't generally valid,
  1409.      break out all the registers referred to.  */
  1410.       if (! memory_address_p (mode, copy))
  1411.     return gen_rtx (MEM, mode, copy_address (copy));
  1412.  
  1413.       if (GET_CODE (copy) == PLUS)
  1414.     {
  1415.       if (XEXP (copy, 0) == frame_pointer_rtx
  1416.           || XEXP (copy, 1) == frame_pointer_rtx
  1417.           || (ARG_POINTER_REGNUM != FRAME_POINTER_REGNUM
  1418.           && (XEXP (copy, 0) == arg_pointer_rtx
  1419.               || XEXP (copy, 1) == arg_pointer_rtx)))
  1420.         {
  1421.           rtx reg;
  1422.           if (XEXP (copy, 0) == frame_pointer_rtx
  1423.           || XEXP (copy, 0) == arg_pointer_rtx)
  1424.         reg = XEXP (copy, 0), copy = XEXP (copy, 1);
  1425.           else
  1426.         reg = XEXP (copy, 1), copy = XEXP (copy, 0);
  1427.  
  1428.           if (GET_CODE (copy) == CONST_INT)
  1429.         {
  1430.           int c = INTVAL (copy);
  1431.  
  1432. #if defined( DSP56000 ) || defined( DSP96000 )
  1433.           /* we must reverse the mode of comparison here when
  1434.              the stack grows upward: the address of the first
  1435.              parameter is < the address of all local variables. */
  1436.           if (reg == arg_pointer_rtx && c <= first_parm_offset)
  1437. #else
  1438.           if (reg == arg_pointer_rtx && c >= first_parm_offset)
  1439. #endif
  1440.             return access_parm_map (c, mode);
  1441.  
  1442.           temp = gen_rtx (PLUS, Pmode,
  1443.                   frame_pointer_rtx,
  1444.                   gen_rtx (CONST_INT, SImode,
  1445.                        c + fp_delta));
  1446.           if (! memory_address_p (Pmode, temp))
  1447.             return gen_rtx (MEM, mode, plus_constant (inline_fp_rtx, c));
  1448.         }
  1449.           copy =  copy_rtx_and_substitute (copy);
  1450.           temp = gen_rtx (PLUS, Pmode, frame_pointer_rtx, copy);
  1451.           temp = plus_constant (temp, fp_delta);
  1452.           temp = memory_address (Pmode, temp);
  1453.         }
  1454.       else if (reg_mentioned_p (frame_pointer_rtx, copy)
  1455.            || (ARG_POINTER_REGNUM != FRAME_POINTER_REGNUM
  1456.                && reg_mentioned_p (arg_pointer_rtx, copy)))
  1457.         {
  1458.           if (GET_CODE (XEXP (copy, 0)) == CONST_INT)
  1459.         {
  1460.           temp = copy_rtx_and_substitute (XEXP (copy, 1));
  1461.           temp = plus_constant (temp, INTVAL (XEXP (copy, 0)));
  1462.         }
  1463.           else if (GET_CODE (XEXP (copy, 1)) == CONST_INT)
  1464.         {
  1465.           temp = copy_rtx_and_substitute (XEXP (copy, 0));
  1466.           temp = plus_constant (temp, INTVAL (XEXP (copy, 1)));
  1467.         }
  1468.           else
  1469.         {
  1470.           temp = gen_rtx (PLUS, GET_MODE (copy),
  1471.                   copy_rtx_and_substitute (XEXP (copy, 0)),
  1472.                   copy_rtx_and_substitute (XEXP (copy, 1)));
  1473.         }
  1474.         }
  1475.       else
  1476.         {
  1477.           if (GET_CODE (XEXP (copy, 1)) == CONST_INT)
  1478.         temp = plus_constant (copy_rtx_and_substitute (XEXP (copy, 0)),
  1479.                       INTVAL (XEXP (copy, 1)));
  1480.           else if (GET_CODE (XEXP (copy, 0)) == CONST_INT)
  1481.         temp = plus_constant (copy_rtx_and_substitute (XEXP (copy, 1)),
  1482.                       INTVAL (XEXP (copy, 0)));
  1483.           else
  1484.         {
  1485.           rtx left = copy_rtx_and_substitute (XEXP (copy, 0));
  1486.           rtx right = copy_rtx_and_substitute (XEXP (copy, 1));
  1487.  
  1488.           temp = gen_rtx (PLUS, GET_MODE (copy), left, right);
  1489.         }
  1490.         }
  1491.     }
  1492.       else
  1493.     temp = copy_rtx_and_substitute (copy);
  1494.  
  1495.       return change_address (orig, mode, temp);
  1496.  
  1497.     case RETURN:
  1498.       abort ();
  1499.     }
  1500.  
  1501.   copy = rtx_alloc (code);
  1502.   PUT_MODE (copy, mode);
  1503.   copy->in_struct = orig->in_struct;
  1504.   copy->volatil = orig->volatil;
  1505.   copy->unchanging = orig->unchanging;
  1506.  
  1507.   format_ptr = GET_RTX_FORMAT (GET_CODE (copy));
  1508.  
  1509.   for (i = 0; i < GET_RTX_LENGTH (GET_CODE (copy)); i++)
  1510.     {
  1511.       switch (*format_ptr++)
  1512.     {
  1513.     case '0':
  1514.       break;
  1515.  
  1516.     case 'e':
  1517.       XEXP (copy, i) = copy_rtx_and_substitute (XEXP (orig, i));
  1518.       break;
  1519.  
  1520.     case 'u':
  1521.       /* Change any references to old-insns to point to the
  1522.          corresponding copied insns.  */
  1523.       XEXP (copy, i) = insn_map[INSN_UID (XEXP (orig, i))];
  1524.       break;
  1525.  
  1526.     case 'E':
  1527.       XVEC (copy, i) = XVEC (orig, i);
  1528.       if (XVEC (orig, i) != NULL && XVECLEN (orig, i) != 0)
  1529.         {
  1530.           XVEC (copy, i) = rtvec_alloc (XVECLEN (orig, i));
  1531.           for (j = 0; j < XVECLEN (copy, i); j++)
  1532.         XVECEXP (copy, i, j) = copy_rtx_and_substitute (XVECEXP (orig, i, j));
  1533.         }
  1534.       break;
  1535.  
  1536.     case 'i':
  1537.       XINT (copy, i) = XINT (orig, i);
  1538.       break;
  1539.  
  1540.     case 's':
  1541.       XSTR (copy, i) = XSTR (orig, i);
  1542.       break;
  1543.  
  1544.     default:
  1545.       abort ();
  1546.     }
  1547.     }
  1548.  
  1549.   if (code == ASM_OPERANDS && orig_asm_operands_vector == 0)
  1550.     {
  1551.       orig_asm_operands_vector = XVEC (orig, 3);
  1552.       copy_asm_operands_vector = XVEC (copy, 3);
  1553.       copy_asm_constraints_vector = XVEC (copy, 4);
  1554.     }
  1555.  
  1556.   return copy;
  1557. }
  1558.  
  1559. /* Get the value corresponding to an address relative to the arg pointer
  1560.    at index RELADDRESS.  MODE is the machine mode of the reference.
  1561.    MODE is used only when the value is a REG.
  1562.    Pass VOIDmode for MODE when the mode is not known;
  1563.    in such cases, you should make sure the value is a MEM.  */
  1564.  
  1565. static rtx
  1566. access_parm_map (reladdress, mode)
  1567.      int reladdress;
  1568.      enum machine_mode mode;
  1569. {
  1570.   /* Index in parm_map.  */
  1571.   int index = reladdress / UNITS_PER_WORD;
  1572.   /* Offset of the data being referenced
  1573.      from the beginning of the value for that parm.  */
  1574.   int offset = reladdress % UNITS_PER_WORD;
  1575.   rtx copy;
  1576.  
  1577.   /* If we are referring to the middle of a multiword parm,
  1578.      find the beginning of that parm.
  1579.      OFFSET gets the offset of the reference from
  1580.      the beginning of the parm.  */
  1581.  
  1582.   while (parm_map[index] == 0)
  1583.     {
  1584.       index--;
  1585.       if (index < first_parm_offset / UNITS_PER_WORD)
  1586.     /* If this abort happens, it means we need
  1587.        to handle "decrementing" INDEX back far
  1588.        enough to start looking among the reg parms
  1589.        instead of the stack parms.  What a mess!  */
  1590.     abort ();
  1591.       offset += UNITS_PER_WORD;
  1592.     }
  1593.  
  1594.   copy = parm_map[index];
  1595.  
  1596. #ifdef BYTES_BIG_ENDIAN
  1597.   /* Subtract from OFFSET the offset of where
  1598.      the actual parm value would start.  */
  1599.   if (GET_MODE_SIZE (GET_MODE (copy)) < UNITS_PER_WORD)
  1600.     offset
  1601.       -= (UNITS_PER_WORD
  1602.       - GET_MODE_SIZE (GET_MODE (copy)));
  1603. #endif
  1604.  
  1605.   /* For memory ref, adjust it by the desired offset.  */
  1606.   if (GET_CODE (copy) == MEM)
  1607.     {
  1608.       if (offset != 0)
  1609.     return change_address (copy, mode,
  1610.                    plus_constant (XEXP (copy, 0),
  1611.                           offset));
  1612.       return copy;
  1613.     }
  1614.  
  1615.   if (GET_CODE (copy) != REG && GET_CODE (copy) != SUBREG
  1616.       && ! CONSTANT_P (copy))
  1617.     abort ();
  1618.   if (mode == VOIDmode)
  1619.     abort ();
  1620.  
  1621.   /* A REG cannot be offset by bytes, so use a subreg
  1622.      (which is possible only in certain cases).  */
  1623.   if (GET_MODE (copy) != mode
  1624.       && GET_MODE (copy) != VOIDmode)
  1625.     {
  1626.       int word;
  1627.       /* Crash if the portion of the arg wanted
  1628.      is not the least significant.
  1629.      Functions with refs to other parts of a
  1630.      parameter should not be inline--
  1631.      see function_cannot_inline_p. */
  1632. #ifdef BYTES_BIG_ENDIAN
  1633.       if (offset + GET_MODE_SIZE (mode)
  1634.       != GET_MODE_SIZE (GET_MODE (copy)))
  1635.     abort ();
  1636. #else
  1637.       if (offset != 0)
  1638.     abort ();
  1639. #endif
  1640.       word = 0;
  1641.       if (GET_CODE (copy) == SUBREG)
  1642.     word = SUBREG_WORD (copy), copy = SUBREG_REG (copy);
  1643.       if (CONSTANT_P (copy))
  1644.     copy = force_reg (GET_MODE (copy), copy);
  1645.       return gen_rtx (SUBREG, mode, copy, word);
  1646.     }
  1647.  
  1648.   return copy;
  1649. }
  1650.  
  1651. /* Like copy_rtx_and_substitute but produces different output, suitable
  1652.    for an ideosyncractic address that isn't memory_address_p.
  1653.    The output resembles the input except that REGs and MEMs are replaced
  1654.    with new psuedo registers.  All the "real work" is done in separate
  1655.    insns which set up the values of these new registers.  */
  1656.  
  1657. static rtx
  1658. copy_address (orig)
  1659.      register rtx orig;
  1660. {
  1661.   register rtx copy;
  1662.   register int i, j;
  1663.   register RTX_CODE code;
  1664.   register enum machine_mode mode;
  1665.   register char *format_ptr;
  1666.  
  1667.   if (orig == 0)
  1668.     return 0;
  1669.  
  1670.   code = GET_CODE (orig);
  1671.   mode = GET_MODE (orig);
  1672.  
  1673.   switch (code)
  1674.     {
  1675.     case REG:
  1676.       if (REGNO (orig) != FRAME_POINTER_REGNUM)
  1677.     return copy_rtx_and_substitute (orig);
  1678.       return plus_constant (frame_pointer_rtx, fp_delta);
  1679.  
  1680.     case PLUS:
  1681.       if (GET_CODE (XEXP (orig, 0)) == REG
  1682.       && REGNO (XEXP (orig, 0)) == FRAME_POINTER_REGNUM)
  1683.     return plus_constant (orig, fp_delta);
  1684.       break;
  1685.  
  1686.     case MEM:
  1687.       return copy_to_reg (copy_rtx_and_substitute (orig));
  1688.  
  1689.     case CODE_LABEL:
  1690.     case LABEL_REF:
  1691.       return copy_rtx_and_substitute (orig);
  1692.  
  1693.     case PC:
  1694.     case CC0:
  1695.     case CONST_INT:
  1696.     case CONST_DOUBLE:
  1697.     case SYMBOL_REF:
  1698.       return orig;
  1699.     }
  1700.  
  1701.   copy = rtx_alloc (code);
  1702.   PUT_MODE (copy, mode);
  1703.   copy->in_struct = orig->in_struct;
  1704.   copy->volatil = orig->volatil;
  1705.   copy->unchanging = orig->unchanging;
  1706.  
  1707.   format_ptr = GET_RTX_FORMAT (GET_CODE (copy));
  1708.  
  1709.   for (i = 0; i < GET_RTX_LENGTH (GET_CODE (copy)); i++)
  1710.     {
  1711.       switch (*format_ptr++)
  1712.     {
  1713.     case '0':
  1714.       break;
  1715.  
  1716.     case 'e':
  1717.       XEXP (copy, i) = copy_rtx_and_substitute (XEXP (orig, i));
  1718.       break;
  1719.  
  1720.     case 'u':
  1721.       /* Change any references to old-insns to point to the
  1722.          corresponding copied insns.  */
  1723.       XEXP (copy, i) = insn_map[INSN_UID (XEXP (orig, i))];
  1724.       break;
  1725.  
  1726.     case 'E':
  1727.       XVEC (copy, i) = XVEC (orig, i);
  1728.       if (XVEC (orig, i) != NULL && XVECLEN (orig, i) != 0)
  1729.         {
  1730.           XVEC (copy, i) = rtvec_alloc (XVECLEN (orig, i));
  1731.           for (j = 0; j < XVECLEN (copy, i); j++)
  1732.         XVECEXP (copy, i, j) = copy_rtx_and_substitute (XVECEXP (orig, i, j));
  1733.         }
  1734.       break;
  1735.  
  1736.     case 'i':
  1737.       XINT (copy, i) = XINT (orig, i);
  1738.       break;
  1739.  
  1740.     case 's':
  1741.       XSTR (copy, i) = XSTR (orig, i);
  1742.       break;
  1743.  
  1744.     default:
  1745.       abort ();
  1746.     }
  1747.     }
  1748.   return copy;
  1749. }
  1750.  
  1751. /* Attempt to simplify INSN while copying it from an inline fn,
  1752.    assuming it is a SET that sets CC0.
  1753.  
  1754.    If we simplify it, we emit the appropriate insns and return
  1755.    the last insn that we have handled (since we may handle the insn
  1756.    that follows INSN as well as INSN itself).
  1757.  
  1758.    Otherwise we do nothing and return zero.  */
  1759.  
  1760. static rtx
  1761. try_fold_cc0 (insn)
  1762.      rtx insn;
  1763. {
  1764.   rtx cnst = copy_rtx_and_substitute (SET_SRC (PATTERN (insn)));
  1765.   rtx pat, copy;
  1766.  
  1767.   if (CONSTANT_P (cnst)
  1768.       /* @@ Cautious: Don't know how many of these tests we need.  */
  1769.       && NEXT_INSN (insn)
  1770.       && GET_CODE (pat = PATTERN (NEXT_INSN (insn))) == SET
  1771.       && SET_DEST (pat) == pc_rtx
  1772.       && GET_CODE (pat = SET_SRC (pat)) == IF_THEN_ELSE
  1773.       && GET_RTX_LENGTH (GET_CODE (XEXP (pat, 0))) == 2)
  1774.     {
  1775.       rtx cnst2;
  1776.       rtx cond = XEXP (pat, 0);
  1777.  
  1778.       if ((XEXP (cond, 0) == cc0_rtx
  1779.        && CONSTANT_P (XEXP (cond, 1))
  1780.        && (cnst2 = XEXP (cond, 1)))
  1781.       || (XEXP (cond, 1) == cc0_rtx
  1782.           && CONSTANT_P (XEXP (cond, 0))
  1783.           && (cnst2 = XEXP (cond, 0))))
  1784.     {
  1785.       copy = fold_out_const_cc0 (cond, XEXP (pat, 1), XEXP (pat, 2),
  1786.                      cnst, cnst2);
  1787.       if (copy)
  1788.         {
  1789.           if (GET_CODE (copy) == LABEL_REF)
  1790.         {
  1791.           /* We will branch unconditionally to
  1792.              the label specified by COPY.
  1793.              Eliminate dead code by running down the
  1794.              list of insn until we see a CODE_LABEL.
  1795.              If the CODE_LABEL is the one specified
  1796.              by COPY, we win, and can delete all code
  1797.              up to (but not necessarily including)
  1798.              that label.  Otherwise only win a little:
  1799.              emit the branch insn, and continue expanding.  */
  1800.           rtx tmp = NEXT_INSN (insn);
  1801.           while (tmp && GET_CODE (tmp) != CODE_LABEL)
  1802.             tmp = NEXT_INSN (tmp);
  1803.           if (! tmp)
  1804.             abort ();
  1805.           if (label_map[CODE_LABEL_NUMBER (tmp)] == XEXP (copy, 0))
  1806.             {
  1807.               /* Big win.  */
  1808.               return PREV_INSN (tmp);
  1809.             }
  1810.           else
  1811.             {
  1812.               /* Small win.  Emit the unconditional branch,
  1813.              followed by a BARRIER, so that jump optimization
  1814.              will know what to do.  */
  1815.               emit_jump (copy);
  1816.               return NEXT_INSN (insn);
  1817.             }
  1818.         }
  1819.           else if (copy == pc_rtx)
  1820.         {
  1821.           /* Do not take the branch, just fall through.
  1822.              Jump optimize should handle the elimination of
  1823.              dead code if appropriate.  */
  1824.           return NEXT_INSN (insn);
  1825.         }
  1826.           else
  1827.         abort ();
  1828.         }
  1829.     }
  1830.     }
  1831.   return 0;
  1832. }
  1833.  
  1834. /* If (COND_RTX CNST1 CNST2) yield a result we can treat
  1835.    as being constant, return THEN_RTX if the result is always
  1836.    non-zero, and return ELSE_RTX otherwise.  */
  1837. static rtx
  1838. fold_out_const_cc0 (cond_rtx, then_rtx, else_rtx, cnst1, cnst2)
  1839.      rtx cond_rtx, then_rtx, else_rtx;
  1840.      rtx cnst1, cnst2;
  1841. {
  1842.   int value1, value2;
  1843.   int int1 = GET_CODE (cnst1) == CONST_INT;
  1844.   int int2 = GET_CODE (cnst2) == CONST_INT;
  1845.   if (int1)
  1846.     value1 = INTVAL (cnst1);
  1847.   else
  1848.     value1 = 1;
  1849.   if (int2)
  1850.     value2 = INTVAL (cnst2);
  1851.   else
  1852.     value2 = 1;
  1853.  
  1854.   switch (GET_CODE (cond_rtx))
  1855.     {
  1856.     case NE:
  1857.       if (int1 && int2)
  1858.     if (value1 != value2)
  1859.       return copy_rtx_and_substitute (then_rtx);
  1860.     else
  1861.       return copy_rtx_and_substitute (else_rtx);
  1862.       if (value1 == 0 || value2 == 0)
  1863.     return copy_rtx_and_substitute (then_rtx);
  1864.       if (int1 == 0 && int2 == 0)
  1865.     if (rtx_equal_p (cnst1, cnst2))
  1866.       return copy_rtx_and_substitute (else_rtx);
  1867.       break;
  1868.     case EQ:
  1869.       if (int1 && int2)
  1870.     if (value1 == value2)
  1871.       return copy_rtx_and_substitute (then_rtx);
  1872.     else
  1873.       return copy_rtx_and_substitute (else_rtx);
  1874.       if (value1 == 0 || value2 == 0)
  1875.     return copy_rtx_and_substitute (else_rtx);
  1876.       if (int1 == 0 && int2 == 0)
  1877.     if (rtx_equal_p (cnst1, cnst2))
  1878.       return copy_rtx_and_substitute (then_rtx);
  1879.       break;
  1880.     case GE:
  1881.       if (int1 && int2)
  1882.     if (value1 >= value2)
  1883.       return copy_rtx_and_substitute (then_rtx);
  1884.     else
  1885.       return copy_rtx_and_substitute (else_rtx);
  1886.       if (value1 == 0)
  1887.     return copy_rtx_and_substitute (else_rtx);
  1888.       if (value2 == 0)
  1889.     return copy_rtx_and_substitute (then_rtx);
  1890.       break;
  1891.     case GT:
  1892.       if (int1 && int2)
  1893.     if (value1 > value2)
  1894.       return copy_rtx_and_substitute (then_rtx);
  1895.     else
  1896.       return copy_rtx_and_substitute (else_rtx);
  1897.       if (value1 == 0)
  1898.     return copy_rtx_and_substitute (else_rtx);
  1899.       if (value2 == 0)
  1900.     return copy_rtx_and_substitute (then_rtx);
  1901.       break;
  1902.     case LE:
  1903.       if (int1 && int2)
  1904.     if (value1 <= value2)
  1905.       return copy_rtx_and_substitute (then_rtx);
  1906.     else
  1907.       return copy_rtx_and_substitute (else_rtx);
  1908.       if (value1 == 0)
  1909.     return copy_rtx_and_substitute (then_rtx);
  1910.       if (value2 == 0)
  1911.     return copy_rtx_and_substitute (else_rtx);
  1912.       break;
  1913.     case LT:
  1914.       if (int1 && int2)
  1915.     if (value1 < value2)
  1916.       return copy_rtx_and_substitute (then_rtx);
  1917.     else
  1918.       return copy_rtx_and_substitute (else_rtx);
  1919.       if (value1 == 0)
  1920.     return copy_rtx_and_substitute (then_rtx);
  1921.       if (value2 == 0)
  1922.     return copy_rtx_and_substitute (else_rtx);
  1923.       break;
  1924.     case GEU:
  1925.       if (int1 && int2)
  1926.     if ((unsigned)value1 >= (unsigned)value2)
  1927.       return copy_rtx_and_substitute (then_rtx);
  1928.     else
  1929.       return copy_rtx_and_substitute (else_rtx);
  1930.       if (value1 == 0)
  1931.     return copy_rtx_and_substitute (else_rtx);
  1932.       if (value2 == 0)
  1933.     return copy_rtx_and_substitute (then_rtx);
  1934.       break;
  1935.     case GTU:
  1936.       if (int1 && int2)
  1937.     if ((unsigned)value1 > (unsigned)value2)
  1938.       return copy_rtx_and_substitute (then_rtx);
  1939.     else
  1940.       return copy_rtx_and_substitute (else_rtx);
  1941.       if (value1 == 0)
  1942.     return copy_rtx_and_substitute (else_rtx);
  1943.       if (value2 == 0)
  1944.     return copy_rtx_and_substitute (then_rtx);
  1945.       break;
  1946.     case LEU:
  1947.       if (int1 && int2)
  1948.     if ((unsigned)value1 <= (unsigned)value2)
  1949.       return copy_rtx_and_substitute (then_rtx);
  1950.     else
  1951.       return copy_rtx_and_substitute (else_rtx);
  1952.       if (value1 == 0)
  1953.     return copy_rtx_and_substitute (then_rtx);
  1954.       if (value2 == 0)
  1955.     return copy_rtx_and_substitute (else_rtx);
  1956.       break;
  1957.     case LTU:
  1958.       if (int1 && int2)
  1959.     if ((unsigned)value1 < (unsigned)value2)
  1960.       return copy_rtx_and_substitute (then_rtx);
  1961.     else
  1962.       return copy_rtx_and_substitute (else_rtx);
  1963.       if (value1 == 0)
  1964.     return copy_rtx_and_substitute (then_rtx);
  1965.       if (value2 == 0)
  1966.     return copy_rtx_and_substitute (else_rtx);
  1967.       break;
  1968.     }
  1969.   /* Could not hack it.  */
  1970.   return 0;
  1971. }
  1972.  
  1973. /* Output the assembly language code for the function FNDECL
  1974.    from its DECL_SAVED_INSNS.  Used for inline functions that are output
  1975.    at end of compilation instead of where they came in the source.  */
  1976.  
  1977. void
  1978. output_inline_function (fndecl)
  1979.      tree fndecl;
  1980. {
  1981.   rtx head = DECL_SAVED_INSNS (fndecl);
  1982.   rtx last;
  1983.   extern rtx stack_slot_list;
  1984.  
  1985.   temporary_allocation ();
  1986.  
  1987.   current_function_decl = fndecl;
  1988.  
  1989.   /* This call is only used to initialize global variables.  */
  1990.   init_function_start (fndecl);
  1991.  
  1992.   /* Set stack frame size.  */
  1993.   assign_stack_local (BLKmode, DECL_FRAME_SIZE (fndecl));
  1994.  
  1995.   restore_reg_data (FIRST_PARM_INSN (head));
  1996.  
  1997.   stack_slot_list = XEXP (head, 9);
  1998.  
  1999.   expand_function_end (DECL_SOURCE_FILE (fndecl), DECL_SOURCE_LINE (fndecl));
  2000.  
  2001.   for (last = head; NEXT_INSN (last); last = NEXT_INSN (last))
  2002.     ;
  2003.  
  2004.   set_new_first_and_last_insn (FIRST_PARM_INSN (head), last);
  2005.  
  2006.   /* Compile this function all the way down to assembly code.  */
  2007.   rest_of_compilation (fndecl);
  2008.  
  2009.   current_function_decl = 0;
  2010.  
  2011.   permanent_allocation ();
  2012. }
  2013.